Get Wallet Actions
GET/actions
Get Wallet Actions
Request
Query Parameters
apiKey stringrequired
(Required) Your Public API key
Example: {{publicKey}}
page integer
Example: 1
limit integer
Example: 10
tokenAddress string
Example: 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
Responses
- 200
- 401
- 403
Successful response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- Array [
- ]
- ]
docs object[]
_id string
walletAddress string
name string
status string
received object[]
name string
symbol string
address string
decimals integer
value string
type string
_id string
sent object[]
name string
symbol string
address string
decimals integer
value string
to string
type string
_id string
userOpHash string
txHash string
{
"docs": [
{
"_id": "6502e7648e04f67688ac69f9",
"walletAddress": "0x5bbea139c1b1b32cf7b5c7fd1d1ff802de006117",
"name": "swapTokens",
"status": "pending",
"received": [
{
"name": "Luna Terra",
"symbol": "atLUNA",
"address": "0x588e24DEd8f850b14BB2e62E9c50A7Cd5Ee13Da9",
"decimals": 18,
"value": "12320154038834973",
"type": "ERC-20",
"_id": "6502e7648e04f67688ac69fa"
}
],
"sent": [
{
"name": "GoodDollar",
"symbol": "G$",
"address": "0x495d133B938596C9984d462F007B676bDc57eCEC",
"decimals": 2,
"value": "1",
"to": "0xE3F85aAd0c8DD7337427B9dF5d0fB741d65EEEB5",
"type": "ERC-20",
"_id": "6502e7648e04f67688ac69fb"
}
],
"userOpHash": "0x111",
"txHash": null
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
statusCode integer
errorMessage object
statusCode integer
message string
path string
{
"statusCode": 401,
"errorMessage": {
"statusCode": 401,
"message": "Unauthorized"
},
"path": "/api/v2/smart-wallets/actions?apiKey={{publicKey}}"
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
statusCode integer
errorMessage string
path string
{
"statusCode": 403,
"errorMessage": "Forbidden resource",
"path": "/api/v2/smart-wallets/actions?apiKey={{publicKey}}"
}
Loading...